POST
/
cortex
/
documents
curl --request POST \
  --url https://api.sophra.org/api/cortex/documents \
  --header 'Content-Type: application/json' \
  --data '{
  "index": "research-papers",
  "document": {
    "title": "Example Research Paper",
    "content": "This is the main content of the research paper...",
    "abstract": "A brief summary of the research paper...",
    "authors": [
      "John Doe",
      "Jane Smith"
    ],
    "tags": [
      "AI",
      "Machine Learning"
    ],
    "source": "arXiv"
  }
}'
{
  "success": true,
  "data": {
    "id": "<string>",
    "index": "<string>",
    "vectorized": true
  }
}

Body

application/json

Response

201 - application/json

Document created successfully

The response is of type object.